{% raw %}

Benchmark 1a.1 Results

All result for the 8a.1 benchmark specification.

In [1]:
from IPython.display import HTML

HTML('''<script>
code_show=true; 
function code_toggle() {
 if (code_show){
 $('div.input').hide();
 $('div.prompt').hide();
 } else {
 $('div.input').show();
$('div.prompt').show();
 }
 code_show = !code_show
} 
$( document ).ready(code_toggle);
</script>
<form action="javascript:code_toggle()"><input type="submit" value="Code Toggle"></form>''')
Out[1]:
In [1]:
#from IPython.display import HTML, display
#from time import sleep

#display(HTML("""
#<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
#"""))

#sleep(0.1)

from IPython.display import HTML, display
from time import sleep

display(HTML("""
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
"""))

sleep(0.1)


from pfhub.main import line_plot, levelset_plot, get_table_data, plot_order_of_accuracy, get_result_data, efficiency_plot
#import itables.interactive
from itables import init_notebook_mode

init_notebook_mode(all_interactive=False)
In [3]:
line_plot(
    data_name='free_energy',
    benchmark_id='1a.1',
    layout=dict(
        x=r'<i>t</i>',
        y=r'&#8497;',
        title="Free Energy v Time",
        log_x=True,
        log_y=True
    )
)
<urlopen error [Errno 111] Connection refused> for https://f000.backblazeb2.com/file/pfhub-sjd/bm1a_energy_meumapps.csv
HTTP Error 404: Not Found for https://raw.githubusercontent.com/jah5759/benchmark_results/benchmark_results/1_spinodal_decomp/1a_square_periodic/1a_square_periodic_out.csv
In [4]:
efficiency_plot('1a.1')

Table of Results

Table of 1a.1 benchmark result uploads

In [2]:
## Currently switching off interactive tables as these are not converted to HTML properly.
## This might improve when jupyter-nbcovert is updated to a later version.

init_notebook_mode(all_interactive=False)
get_table_data('1a.1')
Out[2]:
Name Code Benchmark Author Timestamp GitHub ID
0 prismspf_1a prisms 1a.1 Stephen DeWitt 2017-02-10 12:32:00-05:00 stvdwtt
1 meumapps_bm1a meumapps 1a.1 Stephen DeWitt 2021-04-01 00:00:00 stvdwtt
2 fipy_1a_travis fipy 1a.1 Trevor Keller 2017-01-10 00:46:24+00:00 tkphd
3 mmsp_1a_travis mmsp 1a.1 Trevor Keller 2017-01-10 01:01:39+00:00 tkphd
4 fenics_1a_ivan fenics 1a.1 Ivan Yashchuk 2018-11-09 00:00:00 IvanYashchuk
5 moose_1a_jah moose 1a.1 Jacob Hirschhorn 2018-08-22 00:00:00 jah5759
6 memphis_1a memphis 1a.1 Remi Dingreville 2020-02-03 00:00:00 rdingre
7 itg_moose_1a moose 1a.1 Ian Greenquist 2018-03-29 00:00:00 itgreenquist
8 mmsp_1a_raspi mmsp 1a.1 Trevor Keller 2017-02-01 03:43:09+00:00 tkphd
9 moose_psu_1a_STA moose 1a.1 PC. Simon 2017-02-09 22:48:48-05:00 simopier
10 mmsp_1a_wrksttn mmsp 1a.1 Trevor Keller 2017-02-10 13:34:42-05:00 tkphd
11 moose_psu_1a_IA moose 1a.1 PC. Simon 2017-01-19 15:21:30-05:00 simopier
12 moose_fh_1a moose 1a.1 Floyd Hilty 2018-08-09 00:00:00 FHilty
13 moose_1a_ia moose 1a.1 A. M. Jokisaari 2016-06-28 00:00:00 amjokisaari
14 fipy_1a_10.5281/zenodo.7474506 fipy 1a.1 Daniel Wheeler 2022-12-22 00:00:00 None
{% endraw %}